home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / zendisk1 / lst9-22.asm < prev    next >
Encoding:
Assembly Source File  |  1990-02-15  |  220 b   |  16 lines

  1. ;
  2. ; *** Listing 9-22 ***
  3. ;
  4. ; Times shifts performed by using multiple 1-bit shift
  5. ; instructions.
  6. ;
  7. BITS_TO_SHIFT    equ    1
  8.     call    ZTimerOn
  9.     rept    100
  10.     rept    BITS_TO_SHIFT
  11.     shl    ax,1
  12.     endm
  13.     endm
  14.     call    ZTimerOff
  15.  
  16.